home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 1 / Gekikoh Dennoh Club Vol. 1 (Japan).7z / Gekikoh Dennoh Club Vol. 1 (Japan) (Track 1).bin / kowin / archive / sys / kowin14s.lzh / corlib / GetTitleAddress.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-06  |  294 b   |  20 lines

  1. /*
  2.     SetTitle    1991 小笠原博之
  3. */
  4.  
  5. #include    <stdio.h>
  6. #include    <wlib.h>
  7. #include    <winop.h>
  8. #include    "title.h"
  9.  
  10. asm( " .xdef _GetTitleAddress" );
  11. asm( "_GetTitleAddress    equ    _TitleGetAddress" );
  12.  
  13. unsigned char*
  14. TitleGetAddress( wp )
  15. TitleClass    *wp;
  16. {
  17.     return    wp->title.label;
  18. }
  19.  
  20.